home *** CD-ROM | disk | FTP | other *** search
/ Sesame Street - Season 38 Press Kit / Sesame Street - Season 38 Press Kit CD-ROM.iso / mac.swf / scripts / __Packages / com / mosesSupposes / fuse / penner_easing / Linear.as < prev    next >
Encoding:
Text File  |  2007-06-07  |  500 b   |  27 lines

  1. class com.mosesSupposes.fuse.penner_easing.Linear
  2. {
  3.    function Linear()
  4.    {
  5.    }
  6.    static function easeNone(t, b, c, d)
  7.    {
  8.       return c * t / d + b;
  9.    }
  10.    static function easeIn(t, b, c, d)
  11.    {
  12.       return c * t / d + b;
  13.    }
  14.    static function easeOut(t, b, c, d)
  15.    {
  16.       return c * t / d + b;
  17.    }
  18.    static function easeInOut(t, b, c, d)
  19.    {
  20.       return c * t / d + b;
  21.    }
  22.    static function easeOutIn(t, b, c, d)
  23.    {
  24.       return c * t / d + b;
  25.    }
  26. }
  27.